home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Codigos_Prontos / CSS / Texto / Gradient text effect.txt < prev    next >
Text File  |  2008-08-19  |  449b  |  26 lines

  1.  
  2. <h1><span></span>CSS Gradient Text</h1>
  3.  
  4. h1 {
  5. font: bold 330%/100% "Lucida Grande";
  6. position: relative;
  7. color: #464646;
  8. }
  9. h1 span {
  10. background: url(gradient.png) repeat-x;
  11. position: absolute;
  12. display: block;
  13. width: 100%;
  14. height: 31px;
  15. }
  16.  
  17. <!--[if lt IE 7]>
  18. <style>
  19. h1 span {
  20. background: none;
  21. filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='gradient.png', sizingMethod='scale');
  22. }
  23. </style>
  24.  
  25. <![endif]-->
  26.